-
-
Notifications
You must be signed in to change notification settings - Fork 364
feat(BootstrapLabel): add form-label-tooltip when enable ShowLabelTooltip #5615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's Guide by SourceryThis pull request updates the project version and enhances the tooltip functionality of the BootstrapLabel component by adding a new CSS class and corresponding styles to improve spacing and alignment. Updated class diagram for BootstrapLabelclassDiagram
class BootstrapLabel {
-string Value
-bool _showTooltip
+RenderLabel()
}
BootstrapLabel -- Tooltip : uses
note for BootstrapLabel "Tooltip now has class 'form-label-tooltip'"
Updated class diagram for TooltipclassDiagram
class Tooltip {
-string Title
-string class
}
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @ArgoZhang - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider if the CSS rule added to
Row.razor.scssshould be more specific to avoid unintended consequences.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5615 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 649 649
Lines 29622 29622
Branches 4165 4165
=========================================
Hits 29622 29622 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Link issues
fixes #5614
Summary By Copilot
This pull request includes several changes to the
BootstrapBlazorproject, focusing on updating the project version and enhancing the tooltip functionality in theBootstrapLabelcomponent. The most important changes are summarized below:Version Update:
src/BootstrapBlazor/BootstrapBlazor.csproj: Updated the project version from9.4.9-beta04to9.4.9-beta05.Tooltip Enhancements:
src/BootstrapBlazor/Components/Label/BootstrapLabel.razor: Added a new CSS classform-label-tooltipto theTooltipcomponent for better styling.src/BootstrapBlazor/Components/Row/Row.razor.scss: Added CSS rules to ensure proper spacing and alignment when using theform-label-tooltipclass.Regression?
Risk
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Enhance the BootstrapLabel component by adding a form-label-tooltip class to the Tooltip component and updating the project version.
Enhancements: